home *** CD-ROM | disk | FTP | other *** search
-
- /* Generated by Interface Builder */
-
- #import "StartupSoundApp.h"
- #import <appkit/appkit.h>
- #import <soundkit/soundkit.h>
- #import <stdio.h>
-
-
- @implementation StartupSoundApp
-
- - appDidInit:sender
- {
- theSound = [Sound findSoundFor:"Startup"];
- if (theSound) {
- [theSound setDelegate:self];
- [theSound play]; }
- else
- NXRunAlertPanel("Error", "Could not find anything called Startup.snd, process aborted", "Well, Okay!", NULL, NULL);
- return self;
- }
-
- - didPlay:sender
- {
- [self terminate:NULL];
- return self;
- }
-
- @end
-